home *** CD-ROM | disk | FTP | other *** search
/ Champak 99 / (Vol 99) Jan 19 2010.iso / Games / bomby_bomb.swf / scripts / frame_13 / DoAction.as
Text File  |  2010-01-19  |  571b  |  34 lines

  1. startDrag("/trail0",1,130,380,500,380);
  2. tellTarget("/trail0")
  3. {
  4.    gotoAndPlay(2);
  5. }
  6. tellTarget("/trail1")
  7. {
  8.    gotoAndPlay(1);
  9. }
  10. tellTarget("/cannon")
  11. {
  12.    gotoAndPlay(1);
  13. }
  14. tellTarget("/bombpile")
  15. {
  16.    gotoAndStop(7);
  17. }
  18. score = 0;
  19. endofgame = 0;
  20. bombsLeft = 6;
  21. tellTarget("/bombpile")
  22. {
  23.    gotoAndStop(Number(eval("../:bombsLeft")) + 1);
  24. }
  25. num = 1;
  26. while(3 >= Number(num))
  27. {
  28.    duplicateMovieClip("/bomb","bomb" add num,16384 + num);
  29.    set("bombActive" add num,0);
  30.    set("bombOnScreen" add num,0);
  31.    num = Number(num) + 1;
  32. }
  33. play();
  34.